Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change "bigint" to "integer" in Postgres schema grammar. #33

Merged
merged 4 commits into from Dec 7, 2012
Merged

Change "bigint" to "integer" in Postgres schema grammar. #33

merged 4 commits into from Dec 7, 2012

Commits on Oct 25, 2012

  1. Change bigint to integer in Postgres schema grammar.

    Bigint has too big a range to be returned as an int in PHP. It is returned as a string, which can be confusing and lead to unexpected results. In addition, the range of integer is suitable for most cases: -2147483648 to +2147483647.
    conradkleinespel committed Oct 25, 2012

Commits on Oct 26, 2012

  1. Updated unit tests.

    conradkleinespel committed Oct 26, 2012